home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / include / sys / times.h < prev    next >
C/C++ Source or Header  |  1989-08-20  |  1KB  |  35 lines

  1. /*
  2.  * times.h --
  3.  *
  4.  *    Structure returned by backwards compatible times()
  5.  *      function.  Times() has been obsoleted by getrusage(2).
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/lib/include/sys/RCS/times.h,v 1.1 89/08/20 19:30:10 rab Exp $
  17.  */
  18.  
  19. #ifndef _SYS_TIMES_H
  20. #define _SYS_TIMES_H
  21.  
  22.  
  23. /*
  24.  * Structure returned by times()
  25.  */
  26. struct tms {
  27.     time_t    tms_utime;          /* user time */
  28.     time_t    tms_stime;          /* system time */
  29.     time_t    tms_cutime;         /* user time, children */
  30.     time_t    tms_cstime;         /* system time, children */
  31. };
  32.  
  33. #endif /* _SYS_TIMES_H */
  34.  
  35.